home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’97 / Sessions ’97 / Multiplatform Code⁄Data Sharing / HelloBothWorlds / Libraries / GEOffscreen.h < prev    next >
Encoding:
Text File  |  1997-06-26  |  393 b   |  23 lines  |  [TEXT/CWIE]

  1.  
  2. // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
  3. // free source code - do whatever you like with it
  4.  
  5. // uniform access to offscreen pixels on both mac and windows
  6.  
  7. #ifndef GEOffscreen_H
  8. #define GEOffscreen_H
  9.  
  10. #include "common.h"
  11.  
  12. struct GEOffscreenInfo
  13. {
  14.     char* baseAddr;
  15.     int   rowBytes;
  16.     Rect  bounds;
  17. };
  18.  
  19. GEOffscreenInfo GetGEOffscreenInfo( GWorldPtr );
  20.  
  21. #endif
  22.  
  23.